home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
redakcyjne
/
PEBuilder
/
pebuilder3110a.exe
/
{app}
/
plugin
/
StarWind
/
StarWind_GUI.cmd
< prev
next >
Wrap
OS/2 REXX Batch file
|
2005-01-17
|
465b
|
25 lines
@echo off
setlocal
echo Check if TCP/IP stack is installed...
bartpe.exe -c c -q ms_tcpip
if not "%errorlevel%" == "0" (
echo.
echo TCP/IP stack is not installed!
echo Please load network support before this script!
goto _err)
regsvr32 /s msxml.dll
%systemdrive%\Programs\RDS\StarWind\StarWind.exe
goto _end
:_err
echo.
echo There was an error, script aborted!!!
rem set errorlevel to 1 by (mis)using color
color 00
:_end
endlocal